home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / shells / tcshsrc.zoo / tcsh / WishList < prev   
Encoding:
Text File  |  1991-10-25  |  1.1 KB  |  43 lines

  1. * Fix memory leak related to aliasrun(). Precmd, Cwdcmd etc. leak memory.
  2.  
  3. * Fix migrate -site $$... Seems to hang... (aix370)
  4.  
  5. * Fix history in loops.
  6.  
  7. * Fix loops so that they work inside aliases.
  8.  
  9. * Fix variable substitutions so that can behave recursively; i.e. I want
  10.   to be able to say echo $foo:t:e
  11.  
  12. * New idea.
  13.     Lots of people seem to like the idea to be able to do sed type
  14.     operations on shell variables. Maybe we can extend the syntax
  15.     of the variable editing to understand string operations.
  16.     So I would like to be able to use:
  17.     > set a="this is a STRING"
  18.     > echo $a:[3-]
  19.     is is a STRING
  20.     > echo $a:[#]
  21.     16
  22.     > echo $a:[6-7]
  23.     is
  24.     > echo $a:[-2]
  25.     ng
  26.     > echo $a:[-20]
  27.     Subscript out of bounds.
  28.     > echo $a:[2-20]
  29.     Subscript out of bounds.
  30.     > echo $a:l
  31.     this is a string
  32.     > echo $a:u
  33.     THIS IS A STRING
  34.     > echo $a:[1-1]:u$a:[2-].
  35.     This is a string.
  36.  
  37. * Fix pipelines that contain builtins so that they behave correctly.
  38.   I tried to fix that (most of the code is in sh.sem.c, but it works
  39.   only for non POSIX machines cause otherwise the setpgid() I added
  40.   fails).
  41.  
  42. * Fix the correct code... How to do that involves A.I....
  43.